home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / gfx / edit / VE-VSurface.lha / Notes / VisualSurface.notes < prev   
Text File  |  1999-10-15  |  3KB  |  148 lines

  1.  
  2.  
  3. Visual Engineering - Visual Surface v1.28
  4.  
  5.  
  6.  
  7. SHORT DESCRIPTION
  8.  
  9.   This script will make picture look like it's on some kind
  10.   of surface.
  11.  
  12.  
  13. REQUIREMENTS
  14.  
  15.   Image Engineer v3.41 (Wision release 2)
  16.   Sys:Rexxc/RX
  17.  
  18.  
  19. INSTALLATION
  20.  
  21.   Archive where this file came from should be extracted to a
  22.   directory where you installed Image Engineer.
  23.  
  24.   This script must be in IE:Arexx/
  25.  
  26.  
  27. USAGE
  28.  
  29.   Activate window of an image and run the script.
  30.  
  31.  
  32.  
  33. ARGUMENTS
  34.  
  35.   VisualSurface.rexx <pic> <surfacetype> <arguments>
  36.  
  37.   <pic>          name of a picture (in IE)
  38.   <surfacetype>  name of surfacetype (NOISE or MAXIMUM)
  39.  
  40.  
  41.   <arguments> for surfacetypes are:
  42.  
  43.  
  44.   Noise <noisevalue> <noisecolor> <aftereffect>
  45.  
  46.   <noisevalue>    = noisevalue
  47.   <noisecolor>    = WHITE or BLACK
  48.   <aftereffect>   = name of the aftereffect (no spaces)
  49.  
  50.                     CARBONATED, CONCRETE, LEATHER, CRUNCHY,
  51.                     DIRTY, BLOTCHY, SCRIBBLE, NOISE, BUMP,
  52.                     STARDUST, BRUSHEDMETAL, DOTS or ROCK
  53.  
  54.  
  55.  
  56.   Maximum <maxvalue> <aftereffect>
  57.  
  58.   <maxvalue>      = value of Maximum-operator
  59.   <aftereffect>   = name of the aftereffect (no spaces)
  60.  
  61.                     TEKNO, SUNSHINE, WATERCOLOR, BUMP,
  62.                     RAISED, PSYCHO or WOODCUT
  63.  
  64.  
  65.  
  66.  
  67.   AmigaDOS
  68.  
  69.     Sys:Rexxc/RX VisualSurface.rexx <arguments>
  70.     Sys:Rexxc/RX VisualSurface.rexx 000_testpic.iff NOISE 40 WHITE CARBONATED
  71.  
  72.  
  73.  
  74.   Other scripts:
  75.  
  76.     ADDRESS COMMAND "Sys:Rexxc/RX IE:Arexx/VisualSurface.rexx <arguments>"
  77.  
  78.     Next lines return you the name of this new picture.
  79.  
  80.     PROJECT_LIST
  81.     xyz=result
  82.     pic=subword(xyz,1,1)
  83.  
  84.  
  85.  
  86.  
  87.  
  88. HISTORY
  89.  
  90.   1.28
  91.  
  92.   Calls to external scripts had a minor bug.
  93.  
  94.   1.27
  95.  
  96.   Now you can call this script from other scripts too or in other
  97.   words do some batch processing.
  98.  
  99.   1.24
  100.  
  101.   Convolve missing from current "VE-Extras.lha"-archive, NorthWest was
  102.   renamed to "Reflect_NorthWest". Added 2 new surfaces: Dots and
  103.   Rock.
  104.  
  105.   1.17
  106.  
  107.   Effects now has names + more effects.
  108.  
  109.   1.00
  110.  
  111.   History started
  112.  
  113.  
  114.  
  115.  
  116.  
  117. DISTRIBUTION
  118.  
  119.   The archive, where this file came from, can be distributed using
  120.   any kind of media or distribution channel (CD, Email, WWW, BBS,
  121.   FTP...), but contents of original archive can not be modified.
  122.  
  123.  
  124.   YOU MAY NOT SPREAD MODIFIED VERSIONS OF THE SCRIPT!!
  125.   NOT EVEN PART OF IT!!
  126.  
  127.  
  128.   If you are going to spread a script made by you, which calls one
  129.   of Visual Engineering -scripts, you must include either to
  130.   documentfile of your script or header of the script itself, Visual
  131.   Engineering's website address and my name and email address.
  132.  
  133.   Like this:
  134.  
  135.  
  136.   /*
  137.  
  138.    This script uses Visual Engineering -script(s):
  139.    AddSpace.rexx, PrimaryColors.rexx
  140.  
  141.    By Marko Seppänen <marko.seppanen@wwnet.fi>
  142.  
  143.    Visual Engineering website:
  144.    http://wwnet.fi/users/smarko/visual/
  145.  
  146.    */
  147.  
  148.